home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / DEPOSITO / sb_bust.swf / scripts / __Packages / Enemy5Obj.as < prev    next >
Text File  |  2006-07-26  |  729b  |  24 lines

  1. class Enemy5Obj extends Enemy2Obj
  2. {
  3.    function Enemy5Obj(l_RefMov)
  4.    {
  5.       super(l_RefMov);
  6.       this.ComboNow = new Array(35);
  7.       this.Combos = new Array();
  8.       this.Combos.push(["PunchR",["Wait",15,20]]);
  9.       this.Combos.push(["PunchL",["Wait",15,20]]);
  10.       this.Combos.push(["PunchR",["Wait",15,20]]);
  11.       this.Combos.push(["PunchL",["Wait",15,20]]);
  12.       this.Combos.push(["SA",["Wait",20,20]]);
  13.       this.Combos.push(["BiKick",["Wait",20,20]]);
  14.       this.MaxHealth = 150;
  15.       this.Health = 150;
  16.       this.ChanceToParry = 90;
  17.       this.MaxNbParry = 2;
  18.       this.PunchRDammage = 10;
  19.       this.PunchLDammage = 10;
  20.       this.SADammage = 20;
  21.       this.BiKickDammage = 15;
  22.    }
  23. }
  24.